home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
X User Tools
/
X User Tools (O'Reilly and Associates)(1994).ISO
/
sun4c
/
archive
/
tcltk.z
/
tcltk
/
slib
/
tk
/
demos
/
size
< prev
next >
Wrap
Text File
|
1994-09-20
|
512b
|
17 lines
#!///////////////////////////////////////////////////////////////////////////usr/STAGE/bin/wish -f
#
# Simple script to change size of something in a window.
if "$argc < 3" {error "Usage: size appName window option"}
set appName [lindex $argv 0]
set widget [lindex $argv 1]
set option [lindex $argv 2]
scale .scale -command {send $appName $widget config $option} -label "Pixels" \
-length 250 -from 0 -to 100 -orient vertical
pack .scale
bind . <Control-q> {destroy .}
bind . <Control-c> {destroy .}
focus .